Configure with REL_ALLOC=no to fix crashes
authorRob Browning <rlb@defaultvalue.org>
Wed, 30 Nov 2016 23:53:59 +0000 (17:53 -0600)
committerRob Browning <rlb@defaultvalue.org>
Thu, 1 Dec 2016 00:13:02 +0000 (18:13 -0600)
Thanks to Santiago Vila for reporting the problem, and Sean Whitton for
helping test the fix.

Closes: 842728
debian/rules

index 38696d2076afbb44cc68cb55a566c639e992131c..fbdd51fa4e316357652834b9c691bc58e7646bb1 100755 (executable)
@@ -335,7 +335,10 @@ define cfg_tree
   rm -rf $(1)
   mkdir $(1)
   cp -a $$(ls -A | egrep -v '^(\.git|\.pc|debian)$$') "$(1)"
-  cd $(1) && CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure $(confflags) $(2)
+  cd $(1) && \
+    CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" \
+    REL_ALLOC=no \
+      ./configure $(confflags) $(2)
 endef
 
 define build_cmd